home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 1
/
Nebula One.iso
/
Mail
/
pine3.92
/
pine
/
osdep
/
fgetpos.non
< prev
next >
Wrap
Text File
|
1993-07-20
|
489b
|
23 lines
/*----------------------------------------------------------------------
This is an emulation of the ANSI C fgetpos function.
----*/
fget_pos(stream, ptr)
FILE *stream;
fpos_t *ptr;
{
*ptr = (fpos_t)ftell(stream);
return (*ptr == -1L ? -1 : 0);
}
/*----------------------------------------------------------------------
This is an emulation of the ANSI C fsetpos function.
----*/
fset_pos(stream, ptr)
FILE *stream;
fpos_t *ptr;
{
return fseek(stream, *ptr, 0);
}